大數據的入門工具NumPy
為什麼用NumPy,標準數學函式庫,適合資料科學
很多函式的根基例如 pandas
import numpy as np
myList = [123,True,5.0,4]
myListType = [type(item) for item in myList]
myArray = np.array([True ,"Bob" ,1.0 ,4])
myArrayTypeList = [type(item) for item in myArray]
結果numpy都用同資料型態存儲
這樣速度會會快很多